home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compendium Deluxe 2
/
LSD and 17bit Compendium Deluxe - Volume II.iso
/
a
/
prog
/
misc
/
xes120.lha
/
XES
/
REXX
/
YankRec.xdme
< prev
Wrap
Text File
|
1994-11-09
|
271b
|
14 lines
/* YankRec.xdme */
/* This yanks a rectangle into the text. */
call open(input,"T:rectangle","R")
do forever
line = readln(input)
if eof(input) then leave
xcom = 'push pos insert (' || line || ') ping 9 pop pos down'
xcom
end
'pong 9'
call close(input)